home *** CD-ROM | disk | FTP | other *** search
- unit Iacsreg;
- {************************************************************************
- * IACs for Delphi - INI Aware Components for Delphi *
- * Copyright 1995-96 Strange Solutions Software - All Rights Reserved *
- * *
- * *
- * Component Pallette Registration Unit *
- * *
- ************************************************************************}
-
- interface
-
- Procedure Register;
-
- implementation
- Uses IACS, IACSDB, IAConn ,IAButtns ,IADialgs, IAExCtls, Classes;
-
- Procedure Register;
- Begin
- RegisterComponents('IACs',[TIASource,
- { IACs}
- TIAEdit,
- TIALabel,
- TIACheckBox,
- TIAComboBox,
- TIARadioGroup,
- TIAListBox,
- TIAEditCombo,
- TIARadioButton,
- { IABtns}
- TIASRButton,
- TIASRBitBtn,
- TIASRSpeedButton,
- { IADialgs}
- TIASaveDialog,
- TIAOpenDialog,
- { IACsDB}
- TIADBComboBox,
- { IAExCtrls}
- TIASpinEdit,
- TIAMaskEdit,
- TIAScrollBar]);
- End;
-
- end.
-